if(!document.getElementById)
	{
	if(document.all)document.getElementById=function()
		{
		if(typeof document.all[arguments[0]]!="undefined")
		return document.all[arguments[0]];
		else 
		return null;
		};
	else 
	if(document.layers)document.getElementById=function()
		{
		if(typeof document[arguments[0]]!="undefined")
		return document[arguments[0]];
		else 
		return null;
		};
	}

function init()
	{
	if(arguments.callee.done)return;
	arguments.callee.done=true;
	onLoad();
	};
	if(document.addEventListener)
	{
	document.addEventListener("DOMContentLoaded", init, null);
	}
	/* for Mozilla */
	/* for Internet Explorer */
	/*@cc_on @*/
	/*@if (@_win32)
	document.write("<script defer src='Res/IEOnLoadFix.js' type='text/javascript'><"+"/script>");
	/*@end @*/
	window.onload = init;/* for other browsers */


function onLoad()
{
	window.name="MainWindow";
	testdiv();
}

function testdiv()
{
var a=document.getElementById("dzwonki");
a.style.position="absolute";
a.style.left="-3000";
a.style.top="-9990";
}
